Skip to main content
POST
/
api
/
v2
/
note
/
{note_id}
/
attribute
/
{api_name}
curl --request POST \
  --url https://api.example.com/api/v2/note/{note_id}/attribute/{api_name} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "email": "sarah.work@acme.com",
  "is_primary": false,
  "labels": [
    "WORK"
  ]
}
'
{
  "status_code": 123,
  "error_type": "<string>",
  "code": "<string>",
  "message": "<string>",
  "details": {}
}

Authorizations

Authorization
string
header
required

Reevo API key passed as Authorization: Bearer <api-key>.

Path Parameters

note_id
string<uuid>
required
api_name
string
required

Body

application/json
{key}

Response

Successful Response